home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CGI How-To
/
CGI HOW-TO.iso
/
chap6
/
6_7
/
fork_c
/
fortune.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-06-15
|
172 b
|
15 lines
#!/bin/sh
FORTUNE=/usr/games/fortune
echo Content-type: text/plain
echo
if [ -x $FORTUNE ]; then
$FORTUNE
else
echo Cannot find fortune command on this system.
fi